Daily Mood Evaluation Screen
fun DailyMoodEvaluationScreen(modifier: Modifier = Modifier, viewModel: DailyEvaluationViewModel = hiltViewModel(), openDrawer: () -> Unit, onNavigateToAnalytics: (Int) -> Unit, onNavigateToJournal: () -> Unit)
Composable for displaying the Daily Mood Evaluation screen with a top app bar and navigation options.
Parameters
modifier
Modifier for customizations to the layout.
view Model
The ViewModel to provide the UI state for the daily mood evaluation.
open Drawer
A function to open the navigation drawer.
on Navigate To Analytics
A function to navigate to the analytics screen with an optional parameter for the selected entry.
on Navigate To Journal
A function to navigate to the journal screen.